.mainBody{
	position: absolute;
	height: 95%;
	width: 70%;
	border-width: 2px;
	border-color: black;
	border-style: solid;
}

.debug{
	position: absolute;
	left: 80%;
	width: 20%;
	height: 100%;
	top: 0%;
	overflow: scroll;
	background-color: red;
	color: blue;
	size: 10px;

	white-space: pre-wrap;         
   	white-space: -moz-pre-wrap;     
  	white-space: -pre-wrap;     
  	white-space: -o-pre-wrap;       
  	word-wrap: break-word;    
}

.mapBody{
	position: relative;
	float: left;
	float: top;
	height: 100%;	
	width: 100%;

	border-width: 2px;
	border-color: red;
	border-style: solid;
}	

.debugDropdown{
	background-color: black;
	color: red;
	float: right;
}

.theMap{
	width: 100%;
	height: 100%;
}

.selectDiv{
	width: 100%;
}

.modal {
	position: absolute;
    display: none; /* Hidden by default */
    /*position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
   /* height: 90%; /* Full height */ 
   	height: 100%;
	height: -moz-available;          /* WebKit-based browsers will ignore this. */
	height: -webkit-fill-available; 
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;

    white-space: pre-wrap;         
		white-space: -moz-pre-wrap;     
		white-space: -pre-wrap;     
 		white-space: -o-pre-wrap;       
		/*word-wrap: break-word;    */
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
	position:absolute;
	top: 0%;
	left: calc(100% - 15px);
    color: white;
    font-size: 28px;
    font-weight: bold;
    background-color: red;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
}

.selectElement{
	text-align: right;
	width: 100px;
}

.selectMenu{
	pointer-events: none;
	position: absolute;
	height: 100%;	
	width: 100%;

	display: table; 
}
.midBar{
	width: 100%;
	vertical-align: middle;
	display: table-cell;
}

.rightBar{
	float:right;
	pointer-events: auto;
}

.leftBar{
	float:left;
}

.selectImg{
	padding-left: 5px;
	width: 100px;
	height: 50px;
	background-color: transparent;
	pointer-events: auto;
}

.leftImage{
	float: left;
	width: 50%;
	height: 100%;
	pointer-events: none;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}